home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue40 / COMCorn / ComInf.dpr < prev    next >
Encoding:
Text File  |  1998-11-12  |  367 b   |  22 lines

  1. library ComInf;
  2.  
  3. uses
  4.   ComServ,
  5.   Main in 'Main.pas',
  6.   UtilObjs in 'UtilObjs.pas',
  7.   ViewObj in 'ViewObj.pas',
  8.   UIObjs in 'UIObjs.pas',
  9.   ExtForm in 'ExtForm.pas' {MainForm},
  10.   PropForm in 'PropForm.pas' {ObjPropForm};
  11.  
  12. exports
  13.   DllGetClassObject,
  14.   DllCanUnloadNow,
  15.   DllRegisterServer,
  16.   DllUnregisterServer;
  17.  
  18. {$R MainIcon.res}
  19.  
  20. begin
  21. end.
  22.